Add a few placeholder documentation block to have g-i annotations
authorRico Tzschichholz <ricotz@ubuntu.com>
Wed, 1 May 2019 13:03:16 +0000 (15:03 +0200)
committerRico Tzschichholz <ricotz@ubuntu.com>
Wed, 1 May 2019 13:03:16 +0000 (15:03 +0200)
gdk/x11/gdksurface-x11.c
gtk/a11y/gtkcellaccessibleparent.c

index e605710010c60b3fd152693dd8a02f475c9ffa25..4da000c5966fe7395e6ec418cf240b38496973ca 100644 (file)
@@ -1867,6 +1867,11 @@ gdk_x11_surface_set_modal_hint (GdkSurface *surface,
                             NULL);
 }
 
+/**
+ * gdk_x11_surface_set_skip_taskbar_hint:
+ * @surface: (type GdkX11Surface): a native #GdkSurface
+ * @skips_taskbar:
+ */
 void
 gdk_x11_surface_set_skip_taskbar_hint (GdkSurface *surface,
                                        gboolean    skips_taskbar)
@@ -1888,6 +1893,11 @@ gdk_x11_surface_set_skip_taskbar_hint (GdkSurface *surface,
                             NULL);
 }
 
+/**
+ * gdk_x11_surface_set_skip_pager_hint:
+ * @surface: (type GdkX11Surface): a native #GdkSurface
+ * @skips_pager:
+ */
 void
 gdk_x11_surface_set_skip_pager_hint (GdkSurface *surface,
                                      gboolean    skips_pager)
@@ -1909,6 +1919,11 @@ gdk_x11_surface_set_skip_pager_hint (GdkSurface *surface,
                             NULL);
 }
 
+/**
+ * gdk_x11_surface_set_urgency_hint:
+ * @surface: (type GdkX11Surface): a native #GdkSurface
+ * @urgent:
+ */
 void
 gdk_x11_surface_set_urgency_hint (GdkSurface *surface,
                                   gboolean    urgent)
@@ -3377,6 +3392,11 @@ gdk_x11_surface_get_group (GdkSurface *surface)
   return toplevel->group_leader;
 }
 
+/**
+ * gdk_x11_surface_set_group:
+ * @surface: (type GdkX11Surface): a native #GdkSurface
+ * @leader: a #GdkSurface
+ */
 void
 gdk_x11_surface_set_group (GdkSurface *surface,
                            GdkSurface *leader)
index 1f9dcd75f918ffa1cd5254e6447e784bafb8e4b8..535d907d09d36471a4ce2e0a07149a04c8fd3760 100644 (file)
@@ -42,6 +42,13 @@ gtk_cell_accessible_parent_get_type (void)
   return g_define_type_id__volatile;
 }
 
+/**
+ * gtk_cell_accessible_parent_get_cell_extents:
+ * @x: (out):
+ * @y: (out):
+ * @width: (out):
+ * @height: (out):
+ */
 void
 gtk_cell_accessible_parent_get_cell_extents (GtkCellAccessibleParent *parent,
                                              GtkCellAccessible       *cell,
@@ -61,6 +68,10 @@ gtk_cell_accessible_parent_get_cell_extents (GtkCellAccessibleParent *parent,
     (iface->get_cell_extents) (parent, cell, x, y, width, height, coord_type);
 }
 
+/**
+ * gtk_cell_accessible_parent_get_cell_area:
+ * @cell_rect: (out):
+ */
 void
 gtk_cell_accessible_parent_get_cell_area (GtkCellAccessibleParent *parent,
                                           GtkCellAccessible       *cell,
@@ -188,6 +199,11 @@ gtk_cell_accessible_parent_update_relationset (GtkCellAccessibleParent *parent,
     (iface->update_relationset) (parent, cell, relationset);
 }
 
+/**
+ * gtk_cell_accessible_parent_get_cell_position:
+ * @row: (out):
+ * @column: (out):
+ */
 void
 gtk_cell_accessible_parent_get_cell_position (GtkCellAccessibleParent *parent,
                                               GtkCellAccessible       *cell,